3
How do I change the control's font

<BODY onload="Init()">
<OBJECT CLASSID="clsid:031F9B36-1219-4DF5-8E09-1A50B8185BC2" id="Slider1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Slider1
		.ThumbSize = 32
		.Font.Name = "Tahoma"
		.ForeColor = RGB(255,0,0)
		.Caption(256) = "thumb"
	End With
End Function
</SCRIPT>
</BODY>

2
How can I change the control's foreground color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:031F9B36-1219-4DF5-8E09-1A50B8185BC2" id="Slider1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Slider1
		.ForeColor = RGB(255,0,0)
		.ThumbSize = 32
		.Caption(256) = "thumb"
	End With
End Function
</SCRIPT>
</BODY>

1
How can I change the control's background color

<BODY onload="Init()">
<OBJECT CLASSID="clsid:031F9B36-1219-4DF5-8E09-1A50B8185BC2" id="Slider1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Slider1
		.BackColor = RGB(0,255,0)
	End With
End Function
</SCRIPT>
</BODY>